Member is Not Used (MNU)

Description:

MNU detects unused class members as follows:

Only private members are checked when the option Check private members only is set.

Incorrect:

class Property {
    private string name;
    public object value;

    private object getValue() {
        return value;
    }

    private void print() {
        Console.WriteLine(getValue() + " = " + value);
    }
}

Correct:

class Property {
    public object value;
}